{ 표현식 }으로 구성된다.
${ person.name }/webapps/el/EL.jsp
<%@ page language="java" isELIgnored="false" contentType="text/html; charset=UTF-8"%>
<%
String name ="Expression Language";
String[] color = {"red","blue","green"};
java.util.Map map = new java.util.HashMap();
map.put("name1","red");
map.put("name2","blue");
map.put("name3","green");
request.setAttribute("name", name);
request.setAttribute("color", color);
request.setAttribute("map", map);
%>
<html>
<body>
<h4>${name}</h4>
<h4>${color[1]}</h4>
<h4>${map["name1"]}</h4>
<!-- 파라미터 값을 읽어오는 JSP 제공 내장객체 -->
<h4>${param.name}</h4>
</body>
</html>
![]() |